home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / Triton / Source / include / proto / triton.h
C/C++ Source or Header  |  1998-05-23  |  398b  |  24 lines

  1. #ifndef PROTO_TRITON_H
  2. #define PROTO_TRITON_H
  3.  
  4. #ifdef __GNUC__
  5.  
  6. #include <clib/triton_protos.h>
  7. #if defined(__OPTIMIZE__) && !defined(__NOINLINES__)
  8. #include <inline/triton.h>
  9. #endif
  10. #ifndef __NOLIBBASE__
  11. extern struct Library *TritonBase;
  12. #endif
  13.  
  14. #else
  15.  
  16. #include <exec/types.h>
  17. extern struct Library *TritonBase;
  18. #include <clib/triton_protos.h>
  19. #include <pragmas/triton_pragmas.h>
  20.  
  21. #endif
  22.  
  23. #endif
  24.